type runtime.spanAllocType

8 uses

	runtime (current package)
		mheap.go#L937: type spanAllocType uint8
		mheap.go#L940: 	spanAllocHeap          spanAllocType = iota // heap span
		mheap.go#L947: func (s spanAllocType) manual() bool {
		mheap.go#L990: func (h *mheap) allocManual(npages uintptr, typ spanAllocType) *mspan {
		mheap.go#L1175: func (h *mheap) allocSpan(npages uintptr, typ spanAllocType, spanclass spanClass) (s *mspan) {
		mheap.go#L1381: func (h *mheap) initSpan(s *mspan, typ spanAllocType, spanclass spanClass, base, npages uintptr) {
		mheap.go#L1582: func (h *mheap) freeManual(s *mspan, typ spanAllocType) {
		mheap.go#L1591: func (h *mheap) freeSpanLocked(s *mspan, typ spanAllocType) {